home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / uint16.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  16KB  |  724 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: uint16.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The UINT16 class is used to represent 16 bit unsigned integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating a 16-bit value into two separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An UINT16 type has a base 10 positive limit of 65,535.
  36. */
  37. // ----------------------------------------------------------- // 
  38. #include <string.h>
  39. #include <memory.h>
  40. #include "uint16.h"
  41. #include "ehandler.h"
  42.  
  43. UINT16::UINT16(__USWORD__ val)
  44. {
  45.   UnPackBits(val);
  46. }
  47.  
  48. UINT16::UINT16(const UINT16& ob)
  49. {
  50.   memmove((void *)byte, (const void *)ob.byte, 2);
  51. }
  52.  
  53. UINT16& UINT16::operator=(const UINT16& ob)
  54. {
  55.   memmove((void *)byte, (const void *)ob.byte, 2);
  56.   return *this;
  57. }
  58.  
  59. UINT16& UINT16::operator=(const __USWORD__ val)
  60. {
  61.   UnPackBits(val);
  62.   return *this;
  63. }
  64.  
  65. UINT16::operator __USWORD__() const
  66. {
  67.   return PackBits();
  68. }
  69.  
  70. __USWORD__ UINT16::PackBits() const
  71. {
  72.   __USWORD__ a, b;
  73.   
  74.   a = (__USWORD__)byte[0];
  75.   b = (__USWORD__)byte[1];
  76.  
  77.   a = a & 0xFF;
  78.   b = (b<<8) & 0xFF00;
  79.  
  80.   return a + b;
  81. }
  82.  
  83. void UINT16::UnPackBits(__USWORD__ val)
  84. {
  85.   byte[0] = val & 0xFF;
  86.   byte[1] = (val & 0xFF00)>>8;
  87. }
  88.  
  89. UINT16 UINT16::operator++(int) // Postfix
  90. {
  91.   UINT16 val_before(*this); 
  92.   operator=(*this + 1);
  93.   return val_before;
  94. }
  95.  
  96. UINT16 UINT16::operator--(int) // Postfix
  97. {
  98.   UINT16 val_before(*this); 
  99.   operator=(*this - 1);
  100.   return val_before;
  101. }
  102.  
  103. void UINT16::operator/=(const UINT16 &i)
  104. {
  105.   if(i == 0)
  106. #ifdef CPP_EXCEPTIONS
  107.     throw CDivideByZero();
  108. #else
  109.     Error->SignalException(EHandler::DivideByZero);
  110. #endif
  111.  
  112.   operator=(*this / i);
  113. }
  114.  
  115. void UINT16::operator/=(const __LWORD__ &i)
  116. {
  117.   if(i == 0)
  118. #ifdef CPP_EXCEPTIONS
  119.     throw CDivideByZero();
  120. #else
  121.     Error->SignalException(EHandler::DivideByZero);
  122. #endif
  123.  
  124.     operator=(*this / i);
  125. }
  126.  
  127. void UINT16::operator/=(const __ULWORD__ &i)
  128. {
  129.   if(i == 0)
  130. #ifdef CPP_EXCEPTIONS
  131.     throw CDivideByZero();
  132. #else
  133.     Error->SignalException(EHandler::DivideByZero);
  134. #endif
  135.  
  136.   operator=(*this / i);
  137. }
  138.  
  139. void UINT16::operator/=(const __WORD__ &i)
  140. {
  141.   if(i == 0)
  142. #ifdef CPP_EXCEPTIONS
  143.     throw CDivideByZero();
  144. #else
  145.     Error->SignalException(EHandler::DivideByZero);
  146. #endif
  147.  
  148.   operator=(*this / i);
  149. }
  150.  
  151. void UINT16::operator/=(const __SWORD__ &i)
  152. {
  153.   if(i == 0)
  154. #ifdef CPP_EXCEPTIONS
  155.     throw CDivideByZero();
  156. #else
  157.     Error->SignalException(EHandler::DivideByZero);
  158. #endif
  159.  
  160.   operator=(*this / i);
  161. }
  162.  
  163. void UINT16::operator/=(const __UWORD__ &i)
  164. {
  165.   if(i == 0)
  166. #ifdef CPP_EXCEPTIONS
  167.     throw CDivideByZero();
  168. #else
  169.     Error->SignalException(EHandler::DivideByZero);
  170. #endif
  171.  
  172.   operator=(*this / i);
  173. }
  174.  
  175. void UINT16::operator/=(const __USWORD__ &i)
  176. {
  177.   if(i == 0)
  178. #ifdef CPP_EXCEPTIONS
  179.     throw CDivideByZero();
  180. #else
  181.     Error->SignalException(EHandler::DivideByZero);
  182. #endif
  183.  
  184.   operator=(*this / i);
  185. }
  186.  
  187. void UINT16::operator/=(const __SBYTE__ &i)
  188. {
  189.   if(i == 0)
  190. #ifdef CPP_EXCEPTIONS
  191.     throw CDivideByZero();
  192. #else
  193.     Error->SignalException(EHandler::DivideByZero);
  194. #endif
  195.  
  196.   operator=(*this / (__USWORD__)i);
  197. }
  198.  
  199. void UINT16::operator/=(const __UBYTE__ &i)
  200. {
  201.   if(i == 0)
  202. #ifdef CPP_EXCEPTIONS
  203.     throw CDivideByZero();
  204. #else
  205.     Error->SignalException(EHandler::DivideByZero);
  206. #endif
  207.  
  208.   operator=(*this / (__USWORD__)i);
  209. }
  210.  
  211. int operator==(const UINT16 &a, const UINT16 &b)
  212. {
  213.   return a.PackBits() == b.PackBits();
  214. }
  215.  
  216. int operator==(const UINT16 &a, const __LWORD__ &bs)
  217. {
  218.   return a.PackBits() == bs;
  219. }
  220.  
  221. int operator==(const __LWORD__ &as, const UINT16 &b)
  222. {
  223.   return as == b.PackBits(); 
  224. }
  225.  
  226. int operator==(const UINT16 &a, const __ULWORD__ &bs)
  227. {
  228.   return a.PackBits() == bs;
  229. }
  230.  
  231. int operator==(const __ULWORD__ &as, const UINT16 &b)
  232. {
  233.   return as == b.PackBits(); 
  234. }
  235.  
  236. int operator==(const UINT16 &a, const __WORD__ &bs)
  237. {
  238.   return a.PackBits() == bs;
  239. }
  240.  
  241. int operator==(const __WORD__ &as, const UINT16 &b)
  242. {
  243.   return as == b.PackBits();
  244. }
  245.  
  246. int operator==(const UINT16 &a, const __SWORD__ &bs)
  247. {
  248.   return a.PackBits() == bs;
  249. }
  250.  
  251. int operator==(const __SWORD__ &as, const UINT16 &b)
  252. {
  253.   return as == b.PackBits(); 
  254. }
  255.  
  256. int operator==(const UINT16 &a, const __UWORD__ &bs)
  257. {
  258.   return a.PackBits() == bs;
  259. }
  260.  
  261. int operator==(const __UWORD__ &as, const UINT16 &b)
  262. {
  263.   return as == b.PackBits(); 
  264. }
  265.  
  266. int operator==(const UINT16 &a, const __USWORD__ &bs)
  267. {
  268.   return  a.PackBits() == bs;
  269. }
  270.  
  271. int operator==(const __USWORD__ &as, const UINT16 &b)
  272. {
  273.   return as == b.PackBits(); 
  274. }
  275.  
  276. int operator==(const UINT16 &a, const __SBYTE__ &bs)
  277. {
  278.   return a.PackBits() == (__USWORD__)bs;
  279. }
  280.  
  281. int operator==(const __SBYTE__ &as, const UINT16 &b)
  282. {
  283.   return (__USWORD__)as == b.PackBits(); 
  284. }
  285.  
  286. int operator==(const UINT16 &a, const __UBYTE__ &bs)
  287. {
  288.   return a.PackBits() == (__USWORD__)bs;
  289. }
  290.  
  291. int operator==(const __UBYTE__ &as, const UINT16 &b)
  292. {
  293.   return (__USWORD__)as == b.PackBits(); 
  294. }
  295.  
  296. int operator!=(const UINT16 &a, const UINT16 &b)
  297. {
  298.   return a.PackBits() != b.PackBits();
  299. }
  300.  
  301. int operator!=(const UINT16 &a, const __LWORD__ &bs)
  302. {
  303.   return a.PackBits() != bs;
  304. }
  305.  
  306. int operator!=(const __LWORD__ &as, const UINT16 &b)
  307. {
  308.   return as != b.PackBits();
  309. }
  310.  
  311. int operator!=(const UINT16 &a, const __ULWORD__ &bs)
  312. {
  313.   return a.PackBits() != bs;
  314. }
  315.  
  316. int operator!=(const __ULWORD__ &as, const UINT16 &b)
  317. {
  318.   return as != b.PackBits();
  319. }
  320.  
  321. int operator!=(const UINT16 &a, const __WORD__ &bs)
  322. {
  323.   return a.PackBits() != bs;
  324. }
  325.  
  326. int operator!=(const __WORD__ &as, const UINT16 &b)
  327. {
  328.   return as != b.PackBits();
  329. }
  330.  
  331. int operator!=(const UINT16 &a, const __SWORD__ &bs)
  332. {
  333.   return a.PackBits() != bs;
  334. }
  335.  
  336. int operator!=(const __SWORD__ &as, const UINT16 &b)
  337. {
  338.   return as != b.PackBits();
  339. }
  340.  
  341. int operator!=(const UINT16 &a, const __UWORD__ &bs)
  342. {
  343.   return a.PackBits() != bs;
  344. }
  345.  
  346. int operator!=(const __UWORD__ &as, const UINT16 &b)
  347. {
  348.   return as != b.PackBits();
  349. }
  350.  
  351. int operator!=(const UINT16 &a, const __USWORD__ &bs)
  352. {
  353.   return a.PackBits() != bs;
  354. }
  355.  
  356. int operator!=(const __USWORD__ &as, const UINT16 &b)
  357. {
  358.   return as != b.PackBits();
  359. }
  360.  
  361. int operator!=(const UINT16 &a, const __SBYTE__ &bs)
  362. {
  363.   return a.PackBits() != (__USWORD__)bs;
  364. }
  365.  
  366. int operator!=(const __SBYTE__ &as, const UINT16 &b)
  367. {
  368.   return (__USWORD__)as != b.PackBits();
  369. }
  370.  
  371. int operator!=(const UINT16 &a, const __UBYTE__ &bs)
  372. {
  373.   return a.PackBits() != (__USWORD__)bs;
  374. }
  375.  
  376. int operator!=(const __UBYTE__ &as, const UINT16 &b)
  377. {
  378.   return (__USWORD__)as != b.PackBits();
  379. }
  380.  
  381. int operator<(const UINT16 &a, const UINT1